Skip to content

Added ASF-required links using drop-down menu and unified navigation#1198

Merged
NightOwl888 merged 10 commits into
apache:masterfrom
zka26:docs/footer-asf-required-links
Oct 31, 2025
Merged

Added ASF-required links using drop-down menu and unified navigation#1198
NightOwl888 merged 10 commits into
apache:masterfrom
zka26:docs/footer-asf-required-links

Conversation

@zka26

@zka26 zka26 commented Oct 2, 2025

Copy link
Copy Markdown
Contributor
  • You've read the Contributor Guide and Code of Conduct.
  • You've included unit or integration tests for your change, where applicable.
  • You've included inline docs for your change, where applicable.
  • There's an open issue for the PR that you are making. If you'd like to propose a change, please open an issue to discuss the change or find an existing issue.

Added ASF-required links via dropdown and unified navigation.

Fixes #1186

Description

This change attempts to standardize the navbar with the newly introduced ASF menus across the Site and Apidocs and, to fix any sort of layout glitches and to improve zoom and resize and to address and solve problem that could have arisen from what was changed. DevTools were used to ensure that everything works accordingly.

General Design:

  • Mobile < 768
  • 769 < Compact < 1199
  • (New) 768 =< Wrap < 1200
  • 1200 <= Desktop

Desktop: Classic horizontal navigation bar extended with the ASF drop-down menu upon hover. The header is fixed when scrolling.

Mobile: Center-aligned column menu with a tap/click-to-open ASF accordion.

Compact: Transition in-between Mobile and Desktop for legacy resolutions (or maybe some tablets). It uses the hamburger menu already and the header is no longer fixed when scrolling focusing on the visibility of the content while the ‘Table of Content’ still appears as the left sidebar, and to a certain point the ‘In this Article’ appears as the right sidebar.

(New) Wrap: Reintroduced that the navbar items ( + searchbar) wraps under the logo.

Improvements:

  • Unified navigation: Same feel and look across the Site and Apidocs.
  • Compact mode (with new breakpoints): When the single classic horizontal navigation bar is no longer possible, we turn to the hamburger menu to prevent the header covering up too much of the content.
    (New) Wrap mode instead of the compact mode. The buttons' heights were decreased slightly.
  • Ribbon safety: Keeps the hamburger menu clear of the “Fork me on GitHub” ribbon, so it is always accessible, never covered by it.
  • [Apidocs-Only] Search overlay: In-between 1400px and 1200px instead of the base search function, we temporarily introduce a search button to open an overlay, therefore delaying the need to switch to hamburger (or multi-line) too early, and Apidocs can switch to it at the same time as the Site.

Previews

Site:

Site - Desktop image
Site - Wrap image
Site - Mobile image

Apidocs:

Apidocs - Desktop: image
Apidocs - Wrap: image
Apidocs - Mobile: image

- Added Foundation, Events, License, Thanks/(Sponsors), Security, Sponsorship, Privacy (Policy) links
- Inserted into _appFooter in doxfx.json
- Left 2024 copyright year unchanged
@NightOwl888 NightOwl888 added the notes:website-or-documentation Documentation or website changes label Oct 2, 2025

@NightOwl888 NightOwl888 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the PR.

This looks good. However, note that the "website" is actually 2 websites, one generated in a subfolder of the other. They share common elements such as CSS styles and the footer.

Option 1: Include links in Footer

This only changes the site folder, but the apidocs folder also has files that contribute to the same website footer.

The two main places to update on the apidocs site are:

But we also need to keep in mind that the footer does an auto-hide, so maybe that is not the best place to put these links.

Option 2: Include links on Home Page Only

I took another look at the requirements and it specifically states that the links are only required to be on the home page. So, we could technically add a section only to that one page, in which case there is only one site to update.

Examples

Here are some examples of how some other projects integrated the links:


Personally, I like the idea of a dropdown at the top like the first two examples. But this does meet the requirements and I don't object to anything except the fact that the footers should not diverge on the 2 websites to keep the same look and feel. So, if you fix the other footer, this works for me.

@paulirwin - Thoughts?

NOTE: I noticed that the docs always has a pancake menu. It should expand to show the 3 menu items across the top when the viewport is wide enough, so if we add a "The ASF" link in the top menu, that issue will also need to be addressed.

@NightOwl888 NightOwl888 added the hacktoberfest-accepted PR is approved for Hacktoberfest even if not merged label Oct 2, 2025
@paulirwin

Copy link
Copy Markdown
Contributor

I do like the dropdown in the header, but I'm also okay with the footer for now.

The header is already wrapping on smaller resolutions, like the tablet I'm using now. If we do the header change, maybe we could move Contributing under Documentation, and Download under About (or remove Download, if possible, since most people are probably using NuGet).

But, I know this is a Hacktoberfest item, so I'm also cool with taking the quickest path to victory here.

@NightOwl888

Copy link
Copy Markdown
Contributor

remove Download, if possible, since most people are probably using NuGet

An Apache release is source code, so these pages are required to download the official releases. The pre-built binaries and packages are technically only provided on NuGet for convenience (at least in Apache's eyes).

https://infra.apache.org/release-publishing.html#valid

That said, IIRC there is an official .cgi file that we could style that would dynamically show the releases on Apache's archives.

@paulirwin

Copy link
Copy Markdown
Contributor

I didn't mean to remove the page itself; just the link in the header. I don't think it needs that level of prominence.

@zka26

zka26 commented Oct 2, 2025

Copy link
Copy Markdown
Contributor Author

Thanks a lot for the detailed feedback and the examples! I would like to work on it and do it the right way, using drop-down approach in the header and try adjusting the menu layout while testing on smaller screen. I will work on that and update the PR accordingly and at the end we can see, if anything else needs to be done, more than glad to contribute! Thank you for the guidance again!

- Removed ASF links from _appFooter and preparing to move ASF links into the top navigation menu using dropdown.
@zka26 zka26 marked this pull request as draft October 2, 2025 19:11
zka26 added 2 commits October 3, 2025 19:27
- Added ASF Foundation, Events, License, Thanks, Security,
Sponsorship, and Privacy Policy links to the apidocs/site menu.
CSS and JS updates for the dropdown are still required.
…apidocs)

- styles/custom.js included in head.tmpl.partial + head-content.tmpl.partial
- main.css,custom.js:
   - ASF dropdown style (hover on dekstop, tap on mobile) with caret.
   - Attempts to make navbar stable across resize, zoom.
(apidocs navbar will be addressed by the next commit)
@NightOwl888

Copy link
Copy Markdown
Contributor

@zka26 - I noticed this is still marked as a draft PR. Do you have more work to do or is this ready for review?

Note that the EditorConfig checker also caught some issues with extra trailing whitespace.

@zka26

zka26 commented Oct 8, 2025

Copy link
Copy Markdown
Contributor Author

@NightOwl888 - Sorry for the late reply and thanks for checking in! The work is nearly complete. I've extended the navbars with the ASF dropdown menu, adding links for both the main site and the apidocs, and have worked to make them look and behave uniformly in both the pancake and desktop modes.

I'm just putting on the final touches now, fixing a small issue in the apidocs part and reverting some changes in the site part to ensure they look and feel more alike.

Thanks for the heads-up about the trailing whitespaces—I've eliminated them.

I plan to commit the finalized version, edit the PR description, and set it for review in about 10 hours.

Edit: Sorry! The 10 hours became much more hours. I reworked the site and almost the apidocs is ready too. I will do my best to submit it today (10.10 Friday)

zka26 added 3 commits October 13, 2025 02:06
- Desktop: hover dropdown; Mobile: accordion in hamburger
- Carets and unified drop-down menu
- Sticky header on desktop; scroll-away on mobile/compact
- GitHub Fork Me ribbon safety margin
- Added main.js and registered in head-content.tmpl.partial and head.tmpl.partial
- Desktop: hover dropdown; Mobile: accordion in hamburger
- Carets and submenu unification
- Sticky header on desktop; scorll-away on mobile, compact
- GitHub Fork Me safety spacing
- Replaced inline search with "Search..." trigger at 1200-1399px
- It does not include the auto-updated docfx.global.json and docfx.global.subsite.json and any other auto-updated files.
@zka26

zka26 commented Oct 21, 2025

Copy link
Copy Markdown
Contributor Author

Sorry, this took longer than expected. The learning curve was trickier than I thought and I decided to restart a few times. I added the ASF-required links via dropdown and unified the navs. I significantly reworked the main.css and main.js files (added main.js for the Site). I tested across viewports/zoom in DevTools to address issues. On the Apidocs, there is a compact search overlay between 1200-1399px to keep a single-line navbar and match the Site. I hope the result feels clean and consistent.
If anything should be reverted, adjusted, included or excluded, please let me know!
I am happy to improve it and take your recommendation.

Edit: Please take all the time you need on the review. Hacktoberfest isn’t a deadline for me.

@zka26 zka26 marked this pull request as ready for review October 21, 2025 22:56
@zka26 zka26 requested a review from NightOwl888 October 21, 2025 22:57
@zka26 zka26 changed the title Added ASF-required footer links in doxfx.json Added ASF-required links using drop-down menu and unified navigation Oct 23, 2025

@NightOwl888 NightOwl888 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. This looks really good. I checked both the website and docs site and they now look more uniform than they did before.

My only minor quibble is that the top menu used to wrap under the logo when the viewport got too small so it didn't collapse to a pancake until it got to the smallest width. Now it switches to a pancake menu when it goes below the maximum viewport size.

Before

image

Now

image

Can you fix that so it will wrap again?

zka26 added 2 commits October 31, 2025 03:08
- Reintroduced wrap, when the the navbar no longer fits into one line
- CSS: Tried to clean it up by consolidating rules and made some changes due to how it reacted the wrapped navbar
- JS: Now using matchMedia to detect and get the correct CSS mode and made some changes due to how it reacted the wrapped navbar
- Reintroduced wrap, when the the navbar no longer fits into one line
- CSS: Tried to clean it up by consolidating rules and made some changes due to how it reacted the wrapped navbar
- JS: Now using matchMedia to detect and get the correct CSS mode and made some changes due to how it reacted the wrapped navbar
@zka26

zka26 commented Oct 31, 2025

Copy link
Copy Markdown
Contributor Author

The wrapping was restored and tried to fine tune the behaviors so they always respond good and clean at every width before transitioning either to the Desktop or the Mobile mode.

Edit: Updated the PR description accordingly and included new screenshots with the wrapping as well.

@zka26 zka26 requested a review from NightOwl888 October 31, 2025 02:20

@NightOwl888 NightOwl888 left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. This looks really good.

@NightOwl888 NightOwl888 merged commit 2991483 into apache:master Oct 31, 2025
1 check passed
asf-gitbox-commits pushed a commit that referenced this pull request Oct 31, 2025
…1198)

* Added ASF-required footer links in doxfx.json

- Added Foundation, Events, License, Thanks/(Sponsors), Security, Sponsorship, Privacy (Policy) links
- Inserted into _appFooter in doxfx.json
- Left 2024 copyright year unchanged

* Revert footer changes in doxfx.json

- Removed ASF links from _appFooter and preparing to move ASF links into the top navigation menu using dropdown.

* Updated toc.yml with ASF menu entries

- Added ASF Foundation, Events, License, Thanks, Security,
Sponsorship, and Privacy Policy links to the apidocs/site menu.
CSS and JS updates for the dropdown are still required.

* Added ASF links to navigation and dropdown behavior to the site (not apidocs)

- styles/custom.js included in head.tmpl.partial + head-content.tmpl.partial
- main.css,custom.js:
   - ASF dropdown style (hover on dekstop, tap on mobile) with caret.
   - Attempts to make navbar stable across resize, zoom.
(apidocs navbar will be addressed by the next commit)

* Revert "Added ASF links to navigation and dropdown behavior to the site (not apidocs)"

This reverts commit 3d8b026.

* Added ASF dropdown & unify nav; introduce main.js (Site)

- Desktop: hover dropdown; Mobile: accordion in hamburger
- Carets and unified drop-down menu
- Sticky header on desktop; scroll-away on mobile/compact
- GitHub Fork Me ribbon safety margin
- Added main.js and registered in head-content.tmpl.partial and head.tmpl.partial

* Added ASF dropdown & unified nav; compact search overlay (Apidocs)

- Desktop: hover dropdown; Mobile: accordion in hamburger
- Carets and submenu unification
- Sticky header on desktop; scorll-away on mobile, compact
- GitHub Fork Me safety spacing
- Replaced inline search with "Search..." trigger at 1200-1399px
- It does not include the auto-updated docfx.global.json and docfx.global.subsite.json and any other auto-updated files.

* Fixed the wrong indent style (tabs) error marked by the EditorConfig Checker for the .js files.

* Restore wrap and rework CSS and JS for Apidocs

- Reintroduced wrap, when the the navbar no longer fits into one line
- CSS: Tried to clean it up by consolidating rules and made some changes due to how it reacted the wrapped navbar
- JS: Now using matchMedia to detect and get the correct CSS mode and made some changes due to how it reacted the wrapped navbar

* Restore wrap and rework CSS and JS for Site

- Reintroduced wrap, when the the navbar no longer fits into one line
- CSS: Tried to clean it up by consolidating rules and made some changes due to how it reacted the wrapped navbar
- JS: Now using matchMedia to detect and get the correct CSS mode and made some changes due to how it reacted the wrapped navbar
@NightOwl888

Copy link
Copy Markdown
Contributor

@paulirwin

You probably need to do a CTRL + F5 to refresh your browser cache.

@paulirwin

Copy link
Copy Markdown
Contributor

Wow, that was aggressively cached. I had done that but it didn't work the first time. Great to see this is live!

However, the Whimsy checks are still failing as of this morning. We'll need to dig in to figure out why, but as long as we actually have the links there, at least we're meeting the requirement. Or, perhaps they are having a caching issue too that will eventually clear. https://whimsy.apache.org/site/project/lucenenet

@NightOwl888

Copy link
Copy Markdown
Contributor

It says it already crawled it today:

Last crawl time: Sun, 02 Nov 2025 16:12:29 GMT over 219 websites.

So apparently the crawler is also unable to bust the cache. So, we either need to wait for the cache to expire or contact INFRA to have them force it. Let's see if the next crawl updates it first, though.

I also noticed that our "events" link doesn't match the regex that they supplied.

^https?://((www\.)?apache\.org/events/current-event|events\.apache\.org|www\.apachecon\.com/event-images/snippet\.js)

Oddly, the events page we linked to looks nicer than any of the pages in the regex. Maybe the docs are wrong on this, though.

@zka26

zka26 commented Nov 3, 2025

Copy link
Copy Markdown
Contributor Author

@NightOwl888 , @paulirwin Thank you for the review and for deploying,

  • I realized I might have forgotten to commit the toc.yml changes in the apidocs's toc folder and that should be the culprit for the missing ASF menu on the other pages of the docs site.
  • About the breadcrumb splitting, I think I might have an idea about it, I will check it out! (maybe a style that was meant only for the Site was left there, but I will find it out)
  • I will reproduce the Firefox issue and fix it up, and try it on some other browsers too, so we can be sure about it.
  • As for the event link, I did bad, because I think, I just edited the URL itself and just appended the /events/ part. Since it landed me on an Apache event page, I did not double verified it in the regex. I will update it with the correct link as well in the toc.yml files.

Sorry about the issues, and thanks again for the heads-ups! If it is alright, then I will open a follow-up PR to address all the issues above!

@NightOwl888

Copy link
Copy Markdown
Contributor

@zka26

Thanks. You are my hero.

I just noticed that the crawler code is available for inspection at: https://github.com/apache/whimsy/blob/master/tools/site-scan.rb. Maybe analyzing it (or using AI to analyze it against our home page source code) could shed some light on why nothing in the report is turning green. At the very least, we can confirm that the regex on the whimsy page is correct and the page we are linked to is not valid (which seems odd to me because I prefer the current page).

If that analysis doesn't reveal anything, let me know and I will contact INFRA to see if they can tell us why our site is not passing validation.

@paulirwin

Copy link
Copy Markdown
Contributor

I found the problem (but not the cause, yet) of the caching issue: the etag returned has not changed between the old and new sites.

I fortunately had another browser instance still open that had the old cached version. Doing a normal load of the page was sending If-None-Match with etag value "24f2-6428c36d87de9-gzip". (If you're unfamiliar, If-None-Match sends a previously returned etag value, to check if it matches. If it doesn't match, the server should return 200 OK with the updated contents along with a new etag header to update its cached value, and if it matches, that means the cached version is up to date so the server returns 304 Not Modified with an empty body.)

The server returned with a 304 Not Modified and also included the etag response header with the same value, which is interpreted by the browser as "the server confirmed that my cached version is correct". So this is not a client-side caching issue, this is actually the server saying that the cached version is correct.

I then looked at what was happening in a browser that had the updated HTML/etc, and it was sending and receiving the exact same header value. So something is wrong on the server to where it's returning the same etag value even if the code has changed.

Note that the server does not send either an Expires header nor Cache-Control header with max-age, so effectively this cache may never expire since, according to the server, the etag value is exactly the same as before.

I am not sure why the server is returning the same etag value as before, as that is usually produced as effectively a hash of the contents of that page/resource, which should have changed with the updated HTML. If we are producing that etag and hardcoding it somewhere, we should fix that. Or perhaps this is an issue with the server infrastructure?

@paulirwin paulirwin mentioned this pull request Nov 3, 2025
@zka26 zka26 mentioned this pull request Jan 11, 2026
4 tasks
paulirwin pushed a commit to paulirwin/lucene.net that referenced this pull request Jun 16, 2026
…pache#1198)

* Added ASF-required footer links in doxfx.json

- Added Foundation, Events, License, Thanks/(Sponsors), Security, Sponsorship, Privacy (Policy) links
- Inserted into _appFooter in doxfx.json
- Left 2024 copyright year unchanged

* Revert footer changes in doxfx.json

- Removed ASF links from _appFooter and preparing to move ASF links into the top navigation menu using dropdown.

* Updated toc.yml with ASF menu entries

- Added ASF Foundation, Events, License, Thanks, Security,
Sponsorship, and Privacy Policy links to the apidocs/site menu.
CSS and JS updates for the dropdown are still required.

* Added ASF links to navigation and dropdown behavior to the site (not apidocs)

- styles/custom.js included in head.tmpl.partial + head-content.tmpl.partial
- main.css,custom.js:
   - ASF dropdown style (hover on dekstop, tap on mobile) with caret.
   - Attempts to make navbar stable across resize, zoom.
(apidocs navbar will be addressed by the next commit)

* Revert "Added ASF links to navigation and dropdown behavior to the site (not apidocs)"

This reverts commit 3d8b026.

* Added ASF dropdown & unify nav; introduce main.js (Site)

- Desktop: hover dropdown; Mobile: accordion in hamburger
- Carets and unified drop-down menu
- Sticky header on desktop; scroll-away on mobile/compact
- GitHub Fork Me ribbon safety margin
- Added main.js and registered in head-content.tmpl.partial and head.tmpl.partial

* Added ASF dropdown & unified nav; compact search overlay (Apidocs)

- Desktop: hover dropdown; Mobile: accordion in hamburger
- Carets and submenu unification
- Sticky header on desktop; scorll-away on mobile, compact
- GitHub Fork Me safety spacing
- Replaced inline search with "Search..." trigger at 1200-1399px
- It does not include the auto-updated docfx.global.json and docfx.global.subsite.json and any other auto-updated files.

* Fixed the wrong indent style (tabs) error marked by the EditorConfig Checker for the .js files.

* Restore wrap and rework CSS and JS for Apidocs

- Reintroduced wrap, when the the navbar no longer fits into one line
- CSS: Tried to clean it up by consolidating rules and made some changes due to how it reacted the wrapped navbar
- JS: Now using matchMedia to detect and get the correct CSS mode and made some changes due to how it reacted the wrapped navbar

* Restore wrap and rework CSS and JS for Site

- Reintroduced wrap, when the the navbar no longer fits into one line
- CSS: Tried to clean it up by consolidating rules and made some changes due to how it reacted the wrapped navbar
- JS: Now using matchMedia to detect and get the correct CSS mode and made some changes due to how it reacted the wrapped navbar
This was referenced Jun 23, 2026
jpapiez pushed a commit to OlyForge3D/PrintFarmer that referenced this pull request Jun 30, 2026
Updated [Lucene.Net](https://github.com/apache/lucenenet) from
4.8.0-beta00017 to 4.8.0-beta00018.

<details>
<summary>Release notes</summary>

_Sourced from [Lucene.Net's
releases](https://github.com/apache/lucenenet/releases)._

## 4.8.0-beta00018

> This is a maintenance update that upgrades ICU4N to the latest
version, since several serious concurrency and resource loading bugs
have been patched since the last Lucene.NET release.

<!-- Release notes generated using configuration in .github/release.yml
at Lucene.Net_4_8_0_beta00018 -->

## What's Changed
### 🐞 Bug Fixes
* FuzzyQuery produces a wrong result when prefix is equal to the term
length by @​paulirwin in apache/lucenenet#1002
* Validate PatternParser DTDs against expected name by @​paulirwin in
apache/lucenenet#1358
* Validate file paths for FSDirectory and Replicator by @​paulirwin in
apache/lucenenet#1357
* Bumped ICU4N to 60.1.0-alpha.440 by @​NightOwl888 in
apache/lucenenet#1353
* ShingleFilter produces invalid queries by @​tohidemyname in
apache/lucenenet#946
* Fix SegmentInfos replace doesn't update userData by @​tohidemyname in
apache/lucenenet#948
### 🚀 Performance Improvements
* SWEEP: Replace J2N's TripleShift call with C# 11's unsigned right
shift operator by @​paulirwin in
apache/lucenenet#1007
### 🏆 Improvements
* Added "Improvements" Category for Release Notes by @​NightOwl888 in
apache/lucenenet#1015
### 📄 Website and API Documentation
* website/site/.htaccess - bug fix by removing BOM and update to
beta0017 redirection by @​rclabo in
apache/lucenenet#1005
* Updated .htaccess copy and release procedure by @​NightOwl888 in
apache/lucenenet#1010
* Added GitHub Automation for Release Notes by @​NightOwl888 in
apache/lucenenet#1011
* fix: Render ASF policy links in static HTML footer by @​rbowen in
apache/lucenenet#1303
* Fix/apidocs breadcrumb toc asf by @​zka26 in
apache/lucenenet#1232
* README: fix typo MacOS -> macOS by @​jbampton in
apache/lucenenet#1179
* Added ASF-required links using drop-down menu and unified navigation
by @​zka26 in apache/lucenenet#1198
* fix: Self-host all external website dependencies by @​mmafrar in
apache/lucenenet#1197
* Fix typos by @​jbampton in
apache/lucenenet#1177
* Replace lucene.testSettings.config references with
lucene.testsettings.json by @​paulirwin in
apache/lucenenet#1035

## New Contributors
* @​jbampton made their first contribution in
apache/lucenenet#1177
* @​mmafrar made their first contribution in
apache/lucenenet#1197
* @​rbowen made their first contribution in
apache/lucenenet#1303
* @​tohidemyname made their first contribution in
apache/lucenenet#946
* @​zka26 made their first contribution in
apache/lucenenet#1198

**Full Changelog**:
apache/lucenenet@Lucene.Net_4_8_0_beta00017...Lucene.Net_4_8_0_beta00018

Commits viewable in [compare
view](apache/lucenenet@Lucene.Net_4_8_0_beta00017...Lucene.Net_4_8_0_beta00018).
</details>

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Lucene.Net&package-manager=nuget&previous-version=4.8.0-beta00017&new-version=4.8.0-beta00018)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
jpapiez pushed a commit to OlyForge3D/PrintFarmer that referenced this pull request Jun 30, 2026
…596)

Updated [Lucene.Net.QueryParser](https://github.com/apache/lucenenet)
from 4.8.0-beta00017 to 4.8.0-beta00018.

<details>
<summary>Release notes</summary>

_Sourced from [Lucene.Net.QueryParser's
releases](https://github.com/apache/lucenenet/releases)._

## 4.8.0-beta00018

> This is a maintenance update that upgrades ICU4N to the latest
version, since several serious concurrency and resource loading bugs
have been patched since the last Lucene.NET release.

<!-- Release notes generated using configuration in .github/release.yml
at Lucene.Net_4_8_0_beta00018 -->

## What's Changed
### 🐞 Bug Fixes
* FuzzyQuery produces a wrong result when prefix is equal to the term
length by @​paulirwin in apache/lucenenet#1002
* Validate PatternParser DTDs against expected name by @​paulirwin in
apache/lucenenet#1358
* Validate file paths for FSDirectory and Replicator by @​paulirwin in
apache/lucenenet#1357
* Bumped ICU4N to 60.1.0-alpha.440 by @​NightOwl888 in
apache/lucenenet#1353
* ShingleFilter produces invalid queries by @​tohidemyname in
apache/lucenenet#946
* Fix SegmentInfos replace doesn't update userData by @​tohidemyname in
apache/lucenenet#948
### 🚀 Performance Improvements
* SWEEP: Replace J2N's TripleShift call with C# 11's unsigned right
shift operator by @​paulirwin in
apache/lucenenet#1007
### 🏆 Improvements
* Added "Improvements" Category for Release Notes by @​NightOwl888 in
apache/lucenenet#1015
### 📄 Website and API Documentation
* website/site/.htaccess - bug fix by removing BOM and update to
beta0017 redirection by @​rclabo in
apache/lucenenet#1005
* Updated .htaccess copy and release procedure by @​NightOwl888 in
apache/lucenenet#1010
* Added GitHub Automation for Release Notes by @​NightOwl888 in
apache/lucenenet#1011
* fix: Render ASF policy links in static HTML footer by @​rbowen in
apache/lucenenet#1303
* Fix/apidocs breadcrumb toc asf by @​zka26 in
apache/lucenenet#1232
* README: fix typo MacOS -> macOS by @​jbampton in
apache/lucenenet#1179
* Added ASF-required links using drop-down menu and unified navigation
by @​zka26 in apache/lucenenet#1198
* fix: Self-host all external website dependencies by @​mmafrar in
apache/lucenenet#1197
* Fix typos by @​jbampton in
apache/lucenenet#1177
* Replace lucene.testSettings.config references with
lucene.testsettings.json by @​paulirwin in
apache/lucenenet#1035

## New Contributors
* @​jbampton made their first contribution in
apache/lucenenet#1177
* @​mmafrar made their first contribution in
apache/lucenenet#1197
* @​rbowen made their first contribution in
apache/lucenenet#1303
* @​tohidemyname made their first contribution in
apache/lucenenet#946
* @​zka26 made their first contribution in
apache/lucenenet#1198

**Full Changelog**:
apache/lucenenet@Lucene.Net_4_8_0_beta00017...Lucene.Net_4_8_0_beta00018

Commits viewable in [compare
view](apache/lucenenet@Lucene.Net_4_8_0_beta00017...Lucene.Net_4_8_0_beta00018).
</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

hacktoberfest-accepted PR is approved for Hacktoberfest even if not merged notes:website-or-documentation Documentation or website changes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Add missing website links

3 participants